if … else
Variations
if (TRUE)
     Do whatever follows on the next line.
   if (TRUE) {
       Do everything between the brackets.
}
   if (FALSE) {
       Not executed if its false
} else {
       do all of this
}